body {
  /* whole document */
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  font-family: 'UnifontExMono';
  image-rendering: pixelated;

  /* backgrounds */
  background-color: rgb(0, 0, 0);
  background-image: url('auroracity.png') ;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  /* link controls */
  a:link{
    color: #dee9fd;
    text-decoration: none;
  }
  a:hover{
    text-decoration: underline;
  }
  a:visited{
    color: #dee9fd;
  }

  /* logo box */
  .top-logo {
    display: flex;
    justify-content: center;
    width: 55%;
    padding: 30px;
    margin-left:auto;
    margin-right:auto;
    box-sizing: border-box;
    border-bottom: 0;
  }

  /* navigation and buttons */
  .navigation {
    border: 32px solid transparent;
    border-image: url('liquidgalaxyborder.png') 16 round;
    background-clip: padding-box;
    background-color: #2d234c;
    margin-left:auto;
    margin-right:auto;
    width: 60%;
    padding: 10px 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
    flex-wrap:nowrap;
    box-sizing: border-box;
  }

  .navigation>div {
    font-size: 30px;
    padding: 5px 20px;
    border: 3px solid #4d4066;
    box-sizing: border-box;
    border-radius: 8px;
    color: #dee9fd;
    text-shadow: 
      /*left*/  -1px 0 #4d4066, 
      /*bottom*/  0 1px #4d4066, 
      /*right*/  1px 0 #4d4066, 
      /*top*/  0 -1px #4d4066;
    background: linear-gradient(
      #f5f8ff 5%,
      #d7ddf1 10%,
      #999dce 30%,
      #999dce 70%,
      #6c6392 90%,
      #4d4066 95% );
  }

  /* homepage box */
  .main-boxes{
    display: flex;
    justify-content: center;
    width: 55%;
    height: auto;
    padding: 20px 20px;
    margin-left:auto;
    margin-right:auto;
    border: 32px solid transparent;
    border-image: url('liquidgalaxyborder.png') 16 round;
    border-top: 0;
    background-clip: padding-box;
    background-color: #2d234c;
    box-sizing: border-box;
    text-align: center;
    color: #dee9fd;
    font-size: 24px;
  }
  
  h2{
    margin-top: 16px;
    margin-bottom: -16px;
    font-size: 48px;
  }

  .tagline{
    margin-top: 8px;
    font-size: 16px;
  }

  .open-text{
    display: grid;
    grid-template: 
      "welcometxt helloaurora"
    / 2fr 1fr;
    text-align: left;
  }
}